home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zpath.c < prev    next >
C/C++ Source or Header  |  1997-07-07  |  4KB  |  179 lines

  1. /* Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zpath.c */
  20. /* Basic path operators */
  21. #include "math_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "igstate.h"
  26. #include "gsmatrix.h"
  27. #include "gspath.h"
  28. #include "store.h"
  29.  
  30. /* Forward references */
  31. private int near common_to(P2(os_ptr,
  32.   int (*)(P3(gs_state *, floatp, floatp))));
  33. private int near common_curve(P2(os_ptr,
  34.   int (*)(P7(gs_state *, floatp, floatp, floatp, floatp, floatp, floatp))));
  35.  
  36. /* - newpath - */
  37. private int
  38. znewpath(register os_ptr op)
  39. {    return gs_newpath(igs);
  40. }
  41.  
  42. /* - currentpoint <x> <y> */
  43. private int
  44. zcurrentpoint(register os_ptr op)
  45. {    gs_point pt;
  46.     int code = gs_currentpoint(igs, &pt);
  47.     if ( code < 0 ) return code;
  48.     push(2);
  49.     make_real(op - 1, pt.x);
  50.     make_real(op, pt.y);
  51.     return 0;
  52. }
  53.  
  54. /* <x> <y> moveto - */
  55. int
  56. zmoveto(os_ptr op)
  57. {    return common_to(op, gs_moveto);
  58. }
  59.  
  60. /* <dx> <dy> rmoveto - */
  61. int
  62. zrmoveto(os_ptr op)
  63. {    return common_to(op, gs_rmoveto);
  64. }
  65.  
  66. /* <x> <y> lineto - */
  67. int
  68. zlineto(os_ptr op)
  69. {    return common_to(op, gs_lineto);
  70. }
  71.  
  72. /* <dx> <dy> rlineto - */
  73. int
  74. zrlineto(os_ptr op)
  75. {    return common_to(op, gs_rlineto);
  76. }
  77.  
  78. /* Common code for [r](move/line)to */
  79. private int near
  80. common_to(os_ptr op, int (*add_proc)(P3(gs_state *, floatp, floatp)))
  81. {    double opxy[2];
  82.     int code;
  83.  
  84.     if ( (code = num_params(op, 2, opxy)) < 0 ||
  85.          (code = (*add_proc)(igs, opxy[0], opxy[1])) < 0
  86.        )
  87.       return code;
  88.     pop(2);
  89.     return 0;
  90. }
  91.  
  92. /* <x1> <y1> <x2> <y2> <x3> <y3> curveto - */
  93. int
  94. zcurveto(register os_ptr op)
  95. {    return common_curve(op, gs_curveto);
  96. }
  97.  
  98. /* <dx1> <dy1> <dx2> <dy2> <dx3> <dy3> rcurveto - */
  99. int
  100. zrcurveto(register os_ptr op)
  101. {    return common_curve(op, gs_rcurveto);
  102. }
  103.  
  104. /* Common code for [r]curveto */
  105. private int near
  106. common_curve(os_ptr op,
  107.   int (*add_proc)(P7(gs_state *, floatp, floatp, floatp, floatp, floatp, floatp)))
  108. {    double opxy[6];
  109.     int code;
  110.  
  111.     if ( (code = num_params(op, 6, opxy)) < 0 )
  112.       return code;
  113.     code = (*add_proc)(igs, opxy[0], opxy[1], opxy[2], opxy[3], opxy[4], opxy[5]);
  114.     if ( code >= 0 ) pop(6);
  115.     return code;
  116. }
  117.  
  118. /* - closepath - */
  119. int
  120. zclosepath(register os_ptr op)
  121. {    return gs_closepath(igs);
  122. }
  123.  
  124. /* - initclip - */
  125. private int
  126. zinitclip(register os_ptr op)
  127. {    return gs_initclip(igs);
  128. }
  129.  
  130. /* - clip - */
  131. private int
  132. zclip(register os_ptr op)
  133. {    return gs_clip(igs);
  134. }
  135.  
  136. /* - eoclip - */
  137. private int
  138. zeoclip(register os_ptr op)
  139. {    return gs_eoclip(igs);
  140. }
  141.  
  142. /* <bool> .setclipoutside - */
  143. private int
  144. zsetclipoutside(register os_ptr op)
  145. {    int code;
  146.     check_type(*op, t_boolean);
  147.     code = gs_setclipoutside(igs, op->value.boolval);
  148.     if ( code >= 0 )
  149.       pop(1);
  150.     return code;
  151. }
  152.  
  153. /* - .currentclipoutside <bool> */
  154. private int
  155. zcurrentclipoutside(register os_ptr op)
  156. {    push(1);
  157.     make_bool(op, gs_currentclipoutside(igs));
  158.     return 0;
  159. }
  160.  
  161. /* ------ Initialization procedure ------ */
  162.  
  163. BEGIN_OP_DEFS(zpath_op_defs) {
  164.     {"0clip", zclip},
  165.     {"0closepath", zclosepath},
  166.     {"0.currentclipoutside", zcurrentclipoutside},
  167.     {"0currentpoint", zcurrentpoint},
  168.     {"6curveto", zcurveto},
  169.     {"0eoclip", zeoclip},
  170.     {"0initclip", zinitclip},
  171.     {"2lineto", zlineto},
  172.     {"2moveto", zmoveto},
  173.     {"0newpath", znewpath},
  174.     {"6rcurveto", zrcurveto},
  175.     {"2rlineto", zrlineto},
  176.     {"2rmoveto", zrmoveto},
  177.     {"1.setclipoutside", zsetclipoutside},
  178. END_OP_DEFS(0) }
  179.